-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Prefer Python over Vim 8 jobs in Windows #666
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
But python installer is not asynchronous (it blocks until completion). Do you think we should really do this? |
|
It provides a smoother user experience in gvim but I don't want to resort to this either because python is not installed by default in Windows. With or without jobs, GVim will spawn a new cmd.exe terminal for each |
|
Actually I don't think asynchronous installation really matters in reality, but coming back to python installer feels like a step backward. I believe #594 is related to the problem, and might fix it. However, it didn't work for me when the PR was made probably due to the instability of job API at the time. |
|
Is the job API stable to reconsider that PR? |
|
I haven't checked since the last time.
Yes, we don't have job API in Vim 7. |
|
The latest job-related Vim 8 patch seems to be If you don't mind, can you add more patch checks for |
|
There's no benefit to this PR anymore because the normal |
Yes, we should not use job API when we can't be sure that it's stable. |
Workaround on Vim 8 jobs spawning multiple, minimized cmd.exe terminals in GVim.
Without python, generating a batchfile with all of the shell commands for each
Plugand running it under one cmd.exe terminal is the only solution I can think of.